├── .gitignore ├── README.md ├── criando_Gemfile.md ├── cucumber ├── Gemfile └── features │ ├── specifications │ └── register.feature │ ├── step_definitions │ └── register.rb │ └── support │ └── env.rb ├── mao_na_massa_faker.md └── trabalhando_com_faker_generator.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *results/ 3 | .DS_Store 4 | *.lock 5 | *report/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/README.md -------------------------------------------------------------------------------- /criando_Gemfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/criando_Gemfile.md -------------------------------------------------------------------------------- /cucumber/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/cucumber/Gemfile -------------------------------------------------------------------------------- /cucumber/features/specifications/register.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/cucumber/features/specifications/register.feature -------------------------------------------------------------------------------- /cucumber/features/step_definitions/register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/cucumber/features/step_definitions/register.rb -------------------------------------------------------------------------------- /cucumber/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/cucumber/features/support/env.rb -------------------------------------------------------------------------------- /mao_na_massa_faker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/mao_na_massa_faker.md -------------------------------------------------------------------------------- /trabalhando_com_faker_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagomarquessp/capybara_for_all_p2/HEAD/trabalhando_com_faker_generator.md --------------------------------------------------------------------------------