Skip to content

Commit c08ba8c

Browse files
committed
Update minitest
Some of these tests explicitly tested an old Minitest (2.10) but that version is so old it's not possible to write a test that works on that and on a more recent version of Minitest. Given how old that version it I have opted to remove these tests.
1 parent 9e1500c commit c08ba8c

File tree

15 files changed

+13
-95
lines changed

15 files changed

+13
-95
lines changed

minitest-maven-plugin/src/it/minitest-failure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>rubygems</groupId>
3131
<artifactId>minitest</artifactId>
32-
<version>2.10.0</version>
32+
<version>5.3.3</version>
3333
<type>gem</type>
3434
<scope>test</scope>
3535
</dependency>

minitest-maven-plugin/src/it/minitest-failure/test/simple_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class SimpleTest < MiniTest::Unit::TestCase
1+
class SimpleTest < Minitest::Unit::TestCase
22

33
def test_it
44
assert false

minitest-maven-plugin/src/it/minitest-from-jruby/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>rubygems</groupId>
3131
<artifactId>minitest</artifactId>
32-
<version>5.14.4</version>
32+
<version>5.3.3</version>
3333
<type>gem</type>
3434
<scope>test</scope>
3535
</dependency>

minitest-maven-plugin/src/it/minitest-from-jruby/test/simple_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class SimpleTest < MiniTest::Unit::TestCase
1+
class SimpleTest < Minitest::Unit::TestCase
22

33
def test_it
44
assert true

minitest-maven-plugin/src/it/minitest-pom-210/invoker.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.

minitest-maven-plugin/src/it/minitest-pom-210/pom.xml

Lines changed: 0 additions & 59 deletions
This file was deleted.

minitest-maven-plugin/src/it/minitest-pom-210/test/simple_test.rb

Lines changed: 0 additions & 7 deletions
This file was deleted.

minitest-maven-plugin/src/it/minitest-pom-210/verify.bsh

Lines changed: 0 additions & 15 deletions
This file was deleted.

minitest-maven-plugin/src/it/minitest-pom-508/test/simple_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class SimpleTest < MiniTest::Unit::TestCase
1+
class SimpleTest < Minitest::Unit::TestCase
22

33
def test_it
44
assert true

minitest-maven-plugin/src/it/minitest-somewhere/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>rubygems</groupId>
3131
<artifactId>minitest</artifactId>
32-
<version>2.10.0</version>
32+
<version>5.3.3</version>
3333
<type>gem</type>
3434
<scope>test</scope>
3535
</dependency>

0 commit comments

Comments
 (0)