File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
java/org/torquebox/mojo/rubygems Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public void testInstall() throws Exception {
34
34
final BundleRunner runner = new BundleRunner (testJRubyContainerRule .getScriptingContainer ());
35
35
String output = runner .install ();
36
36
System .err .println ("bundler output:" + output );
37
- assertThat (numberOfLines (output ), is (15 ));
37
+ assertThat (numberOfLines (output ), is (14 ));
38
38
assertThat (lastLine (output ),
39
39
startsWith ("Use `bundle info [gemname]` to see where a bundled gem is installed." ));
40
40
}
@@ -50,8 +50,10 @@ public void testShowAll() throws Exception {
50
50
@ Test
51
51
public void testShow () throws Exception {
52
52
final BundleRunner runner = new BundleRunner (testJRubyContainerRule .getScriptingContainer ());
53
- assertThat (numberOfLines (runner .show ("zip" )), is (2 ));
54
- assertThat (lastLine (runner .show ("zip" )), endsWith ("zip-2.0.2" ));
53
+ String zip = runner .show ("zip" );
54
+ System .err .println ("bundler output:" + zip );
55
+ assertThat (numberOfLines (zip ), is (2 ));
56
+ assertThat (lastLine (zip ), endsWith ("zip-2.0.2" ));
55
57
}
56
58
57
59
@ Test
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ DEPENDENCIES
17
17
zip
18
18
19
19
BUNDLED WITH
20
- 2.4.12
20
+ 2.3.26
You can’t perform that action at this time.
0 commit comments