Skip to content

Commit e244c4b

Browse files
committed
no-op declare exercises compatible with problem-specifications
input object hamming 2.1.0 exercism/problem-specifications#1129 largest-series-product 1.1.0 exercism/problem-specifications#1114 leap 1.2.0 exercism/problem-specifications#1112 react 1.1.0 exercism/problem-specifications#1130 rna-transcription 1.2.0 exercism/problem-specifications#1111 sieve 1.1.0 exercism/problem-specifications#1105
1 parent 0ae88e1 commit e244c4b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

exercises/hamming/source/hamming/HammingTest.ceylon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ceylon.test { ... }
22

3-
// Tests adapted from problem-specifications version 2.0.1
3+
// Tests adapted from problem-specifications version 2.1.0
44
{[String, String, Integer?]*} cases => {
55
// identical strands
66
["A", "A", 0],

exercises/largest-series-product/source/largestseriesproduct/SeriesTest.ceylon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ceylon.test { ... }
22

3-
// Tests adapted from problem-specifications version 1.0.0
3+
// Tests adapted from problem-specifications version 1.1.0
44
{[String, Integer, Integer?]*} cases => {
55
// finds the largest product if span equals length
66
["29", 2, 18],

exercises/leap/source/leap/LeapTest.ceylon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ceylon.test { ... }
22

3-
// Tests adapted from problem-specifications version 1.2.0
3+
// Tests adapted from problem-specifications version 1.3.0
44
{[Integer, Boolean]*} cases =>
55
{[2015, false], [1996, true], [2100, false], [2000, true]};
66

exercises/react/source/react/ReactorTest.ceylon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ceylon.test { ... }
22

3-
// Tests adapted from problem-specifications version 1.0.0
3+
// Tests adapted from problem-specifications version 1.1.0
44

55
test
66
void inputCellsHaveValue() {

exercises/rna-transcription/source/rnatranscription/RNATest.ceylon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ceylon.test { ... }
22

3-
// Tests adapted from problem-specifications version 1.1.0
3+
// Tests adapted from problem-specifications version 1.2.0
44
// The Ceylon track keeps the Error cases from 1.0.1 (removed in 1.1.0)
55
{[String, String|Null]*} cases => {
66
// empty strand

exercises/sieve/source/sieve/SieveTest.ceylon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ceylon.test { ... }
22

3-
// Tests adapted from problem-specifications version 1.0.0
3+
// Tests adapted from problem-specifications version 1.1.0
44
{Integer*} cases => {1, 2, 10, 13, 1000};
55

66
[Integer+] primes1000 = [

0 commit comments

Comments
 (0)