現在、Rubyバージョン1.9.3を使用しています(ただし、Ruby 2.0.0)でも同じ問題が発生します)。Windows764ビットの場合。「TheCucumberBook」をフォローしていて、7.2章「変換による重複の削除」で行き詰まりました。フォルダ構造は次のとおりです。
_\cash_withdrawal
\cash_withdrawal\Gemfile
\cash_withdrawal\Gemfile.lock
\cash_withdrawal\features
\cash_withdrawal\features\cash-withdrawal.feature
\cash_withdrawal\features\step_definitions
\cash_withdrawal\features\step_definitions\cash_withdrawal_steps.rb
\cash_withdrawal\features\step_definitions\lib
\cash_withdrawal\features\step_definitions\lib\Nice_bank.rb
\cash_withdrawal\features\support
\cash_withdrawal\features\support\env.rb
\cash_withdrawal\features\support\transforms.rb
\cash_withdrawal\features\support\world_extensions.rb
_
私の_cash_withdrawal_steps.rb
_ファイルには次のものがあります。
_require 'CAPTURE_CASH_AMOUNT'
Given /^I have deposited (#{CAPTURE_CASH_AMOUNT}) in my Account$/ do |amount|
my_account.deposit(amount)
my_account.balance.should eq(amount),
"Expected the balance to be #{amount} but it was #{my_account.balance}"
end
_
cucumber
を実行すると、次のようになります。
C:\ Users\Nikita.Harrison\AutomaticTesting\cash_withdrawal> cucumberはそのようなファイルをロードできません-CAPTURE_CASH_AMOUNT(LoadError)C:/Ruby193/lib/Ruby/site_Ruby/1.9.1/rubygems/core_ext/kernel_require.rb:55:in _
r equire' C:/Ruby193/lib/Ruby/site_Ruby/1.9.1/rubygems/core_ext/kernel_require.rb:55:in
_ r equire'C:/Users/Nikita.Harrison/AutomatedTesting/cash_withdrawal/features/step_definiti ons/cash_withdrawal_steps.rb:1:in<top (required)>' C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/lib/cucumber/rb_support/rb_l anguage.rb:122:in
load 'C:/ Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/lib/cucumber/rb_support/rb_l anguage.rb:122:in _load_code_file' C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/lib/cucumber/runtime/support _code.rb:180:in
_ load_file'C:/Ruby193/lib/Ruby/gems/1.9.1/gems /cucumber-1.3.10/lib/cucumber/runtime/support _code.rb:83:in _block in load_files!' C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/lib/cucumber/runtime/support _code.rb:82:in
_ each'C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/ lib/cucumber/runtime/support _code.rb:82:in _load_files!' C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/lib/cucumber/runtime.rb:184: in
_ load_step_definitions'C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/lib/cucumber/runtime.rb :42:in _run!' C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/lib/cucumber/cli/main.rb:47: in
_ execute! ' C:/Ruby193/lib/Ruby/gems/1.9.1/gems/cucumber-1.3.10/bin/cucumber:13:in<top (re quired)>' C:/Ruby193/bin/cucumber:23:in
load'C:/ Ruby193/bin/cucumber:23:in `'
そして、irb
を実行してから_require "CAPTURE_CASH_AMOUNT"
_を実行すると、次のエラーが発生します。
irb(main):006:0> require "CAPTURE_CASH_AMOUNT" LoadError:そのようなファイルをロードできません--CAPTURE_CASH_AMOUNT from C:/Ruby193/lib/Ruby/site_Ruby/1.9.1/rubygems/core_ext/kernel_requir e.rb:55:in _
require' from C:/Ruby193/lib/Ruby/site_Ruby/1.9.1/rubygems/core_ext/kernel_requir e.rb:55:in
_ require'from(irb):6 from C:/ Ruby193/bin/irb:12:in `'
'require_relative'を含む多くの修正を試しましたが、何も問題を解決していないようです。 _require 'CAPTURE_CASH_AMOUNT'
_ファイルから_cash_withdrawal_steps.rb
_を削除してキュウリを実行すると、「ステップ定義」が定義どおりに表示されません。
_C:\Users\Nikita.Harrison\AutomatedTesting\cash_withdrawal>cucumber
Feature: Cash withdrawal
@test Scenario: Successful withdrawal from an account in credit #
features\cash_with drawal.feature:4
Given I have deposited $100 in my Account # features\cash_with drawal.feature:5
When I withdraw $20 # features/step_defi nitions/cash_withdrawal_steps.rb:7
Then $20 should be dispensed # features/step_defi nitions/cash_withdrawal_steps.rb:11
And the balance of my account should be $80 # features/step_defi nitions/cash_withdrawal_steps.rb:15
1 scenario (1 undefined) 4 steps (3 skipped, 1 undefined) 0m0.006s
You can implement step definitions for undefined steps with these
snippets:
Given(/^I have deposited \$(\d+) in my Account$/) do |arg1| pending
\# express the regexp above with the code you wish you had end
_
require File.join(File.dirname("C:/Users/Nikita.Harrison/AutomatedTesting/cash_withdrawal/features/support"), 'support', 'transforms')
を_env.rb
_ファイルに追加してcucumber
を実行すると、次のようになります。
_ C:/Users/Nikita.Harrison/AutomatedTesting/cash_withdrawal/features/support/trans
forms.rb:1: warning: already initialized constant CAPTURE_CASH_AMOUNT
Feature: Cash withdrawal
@test Scenario: Successful withdrawal from an account in credit #
features\cash_with drawal.feature:4
Given I have deposited $100 in my Account # features\cash_with drawal.feature:5
When I withdraw $20 # features/step_defi nitions/cash_withdrawal_steps.rb:7
Then $20 should be dispensed # features/step_defi nitions/cash_withdrawal_steps.rb:11
And the balance of my account should be $80 # features/step_defi nitions/cash_withdrawal_steps.rb:15
1 scenario (1 undefined) 4 steps (3 skipped, 1 undefined) 0m0.013s
You can implement step definitions for undefined steps with these
snippets:
Given(/^I have deposited \$(\d+) in my Account$/) do |arg1| pending
\# express the regexp above with the code you wish you had end
_
私はここで何か間違ったことをしているに違いないことを知っていますが、何を見つけられず、助けが必要なのです。 Gemfileの内容:
_# This Gemfile lists all Gems used throughout the book - with versions.
source :rubygems
# Build stuff
gem 'bundler', '1.5.3'
#gem 'rake', '10.1.1'
#gem 'watchr', '0.7'
#gem 'bcat', '0.6.2'
# General stuff
#gem 'aruba', '0.4.11'
gem 'cucumber', '1.3.10', :require => 'cucumber'
gem 'rake', '10.1.1'
gem 'rspec', '2.14.1', :require => 'cucumber'
gem 'rspec-expectations', '2.14.5'
gem 'watir-webdriver', '0.6.7'
_
必要な情報はすべて含めたと思います。
同じ問題が発生しましたが、バンドラーの問題だと思います。いずれにせよ、私は以下を実行することで問題を解決しました。
bundle update
bundle exec Ruby <yourfilename.rb>
お役に立てれば!
新しいgemをインストールするときはいつでも、バンドルを更新する必要があります(@zwolfeが指摘したように)。したがって、実行します。
bundle update
直後に、次のいずれかを使用してRubyスクリプトを実行できるようになります。
Ruby <yourRubyScript.rb>
またはbundle exec Ruby <yourRubyScript.rb
以前に同じ問題が発生したようです。簡単なものを追加して修正しました
require rubygems
すべての私の必要なラインコードの前に。