Skip to content

Commit 6723a41

Browse files
committed
Renamed files in cw_example
1 parent e095bc6 commit 6723a41

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import preloaded.
1+
Require Import Preloaded.
22

33
Lemma solution : 1 + 1 = 3.
44
Proof. firstorder using test_axiom. Qed.

cw_example/test.v renamed to cw_example/SolutionTest.v

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
Require solution.
2-
Require Import preloaded.
1+
Require Solution.
2+
Require Import Preloaded.
33
From CW Require Import Loader.
44

5-
CWGroup "Tests for solution.solution".
5+
CWGroup "Tests for Solution.solution".
66
CWTestCase "Type test".
7-
Fail CWAssert "Should fail" solution.solution : (1 + 1 = 2).
8-
CWAssert solution.solution : (1 + 1 = 3).
7+
Fail CWAssert "Should fail" Solution.solution : (1 + 1 = 2).
8+
CWAssert Solution.solution : (1 + 1 = 3).
99
CWTestCase "Assumptions test".
10-
CWAssert "Testing solution" solution.solution Assumes test_axiom.
10+
CWAssert "Testing solution" Solution.solution Assumes test_axiom.
1111
CWEndGroup.
1212

13-
Definition solution_test := solution.solution.
13+
Definition solution_test := Solution.solution.
1414

1515
CWGroup "Another test
1616
with line breaks".

cw_example/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
coqc preloaded.v
2-
coqc solution.v
3-
coqc -I ../src -Q ../theories CW test.v
1+
coqc Preloaded.v
2+
coqc Solution.v
3+
coqc -I ../src -Q ../theories CW SolutionTest.v

0 commit comments

Comments
 (0)