Skip to content

Commit 54ff5eb

Browse files
committed
extract and verify statistics-dense-linear-algebra from statistics
1 parent d51fc06 commit 54ff5eb

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

statistics-dense-linear-algebra/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
[![Build Status](https://travis-ci.org/githubuser/statistics-dense-linear-algebra.png)](https://travis-ci.org/githubuser/statistics-dense-linear-algebra)
44

5-
TODO Description.
5+
The dense linear algebra functionality and related modules, extracted from `statistics-0.14.0.2`

statistics-dense-linear-algebra/statistics-dense-linear-algebra.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ test-suite spec
3939
ghc-options: -Wall
4040
type: exitcode-stdio-1.0
4141
hs-source-dirs: test
42-
main-is: Spec.hs
42+
main-is: LibSpec.hs
4343
build-depends: base
4444
, statistics-dense-linear-algebra
4545
, hspec
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module Main where
2+
3+
import Test.Hspec
4+
import Test.Hspec.QuickCheck
5+
6+
7+
main :: IO ()
8+
main = hspec spec
9+
10+
spec :: Spec
11+
spec =
12+
describe "Lib" $ do
13+
it "works" $ do
14+
True `shouldBe` True
15+
-- prop "ourAdd is commutative" $ \x y ->
16+
-- ourAdd x y `shouldBe` ourAdd y x

0 commit comments

Comments
 (0)