-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 28548ab
Showing
7 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.idea/ | ||
.DS_Store | ||
.svn | ||
*~ | ||
.*.swp | ||
!.gitignore | ||
.ruby-gemset | ||
.ruby-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source "https://rubygems.org" | ||
|
||
gem 'rspec' | ||
gem 'cucumber' | ||
gem 'gherkin' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
builder (3.2.2) | ||
cucumber (1.3.6) | ||
builder (>= 2.1.2) | ||
diff-lcs (>= 1.1.3) | ||
gherkin (~> 2.12.0) | ||
multi_json (~> 1.7.5) | ||
multi_test (>= 0.0.2) | ||
diff-lcs (1.2.4) | ||
gherkin (2.12.0) | ||
multi_json (~> 1.3) | ||
multi_json (1.7.8) | ||
multi_test (0.0.2) | ||
rspec (2.14.1) | ||
rspec-core (~> 2.14.0) | ||
rspec-expectations (~> 2.14.0) | ||
rspec-mocks (~> 2.14.0) | ||
rspec-core (2.14.4) | ||
rspec-expectations (2.14.1) | ||
diff-lcs (>= 1.1.3, < 2.0) | ||
rspec-mocks (2.14.3) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
cucumber | ||
gherkin | ||
rspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
desk "generar kata rake generate:Foo_name (todo)" | ||
task :generate do | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
TDD RosarioRb | ||
---------------- | ||
tdd/bdd | ||
|
||
Instalar | ||
======== | ||
|
||
|
||
Bundle install | ||
|
||
run test | ||
|
||
rspec spec/example_spec.rb | ||
|
||
cucumber features/example.feature | ||
|
||
Cucumber (todo) | ||
======== | ||
|
||
I18n Internacionalizacion | ||
|
||
"es": { | ||
"name": "Spanish", | ||
"native": "español", | ||
"background": "Antecedentes", | ||
"feature": "Característica", | ||
"scenario": "Escenario", | ||
"scenario_outline": "Esquema del escenario", | ||
"examples": "Ejemplos", | ||
"given": "*|Dado|Dada|Dados|Dadas", | ||
"when": "*|Cuando", | ||
"then": "*|Entonces", | ||
"and": "*|Y", | ||
"but": "*|Pero" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Example | ||
def self.working? | ||
true | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
require_relative '../katas/example' | ||
require 'rspec' | ||
|
||
describe Example do | ||
it { Example.working?.should be_true } | ||
end |