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