Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i whrite argv. in cucumber-test?

I want, that my test run at localhost:3000 and than on productions (live).

I want this with argv. to define.

ARGV.each do |s|
  if s == `-d`
    @text = `localhost:3000`
  elsif   s == `-p`
    @text = `www.world.com`
  end
end
share|improve this question
Running tests on production is scary business. Why do you need to do this? If your tests are written such that they don't tear down the database between test runs then I'd say you aren't testing correctly. – nzifnab Oct 31 '12 at 20:20

2 Answers

From a quick test, it looks like you can include your code as-is in your env.rb file. The @test variable would then be available in all your steps.

(I am not sure if it is a best practice, but it does work.)

share|improve this answer

I would recommend Fig Newton to solve that kind of problem. You can have many different environments that you can call at execution time. It's easy.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.