codersdojo 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
File without changes
@@ -7,10 +7,15 @@ public class %Kata_file%Test {
7
7
 
8
8
  @Test
9
9
  public void testFoo() {
10
- assertEquals("foo", foo());
10
+ %Kata_file% object_under_test = new %Kata_file%();
11
+ assertEquals("foo", object_under_test.foo());
11
12
  }
12
13
 
13
- public void foo() {
14
+ }
15
+
16
+ class %Kata_file% {
17
+
18
+ public String foo() {
14
19
  return "fixme";
15
20
  }
16
21
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codersdojo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 6
10
- version: 1.0.6
9
+ - 7
10
+ version: 1.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - CodersDojo-Team
@@ -79,6 +79,7 @@ files:
79
79
  - templates/ruby.test-unit/README
80
80
  - templates/ruby.test-unit/run-endless.%sh%
81
81
  - templates/ruby.test-unit/run-once.%sh%
82
+ - lib/place_libs_here
82
83
  - spec/argument_parser_spec.rb
83
84
  - spec/progress_spec.rb
84
85
  - spec/runner_spec.rb