On Fri, Nov 20, 2009 at 1:02 AM, Andy Koch wrote:
>
> I have a project where autospec is not adding new files to it's test
> list.
Autotest (which autospec is really just a wrapper around) builds its
file list when it initializes. After that its looping is pretty
specific.
If you want to refres
Hi,
I have a project where autospec is not adding new files to it's test
list.
When I run 'rake spec' it finds and runs the spec files.
Wondering if there is a cache file that autospec is using?
I've searched for an answer, while I've learned lots of interesting
other tidbits - no answer to wha
On Wed, Nov 18, 2009 at 7:05 AM, grimen wrote:
> $ sudo gem install rspec-rails --development
> Password:
> ERROR: Error installing rspec-rails:
>rspec requires cucumber (>= 0.3, development)
>
>
> ...and when installed cucumber manually, it ends up with weird stuff.
>
Can you be more s
The problem goes away when I ditch the gems and grab the plugins off
github. (The archive is too large, or I'd upload that version.)
Now I just have to get cucumber working with plugins, which is the
reason I switched to gems in the first place…
--
Posted via http://www.ruby-forum.com/.
___
On Wed, Nov 18, 2009 at 6:26 PM, Robertico Gonzalez
wrote:
> Hi,
>
> I am new to Cucumber. I am a test engineer for an IP PBX. Has anyone
> tried to use Cucumber to test such application? Some of the actions
> that I need to perform are:
>
> Given:
> a) Configure parameters on a web site to cha
On Thu, Nov 19, 2009 at 4:11 AM, bqaanne wrote:
>
> Hi,
>
> I am very new to Ruby and Rspec, and found a simple tutorial online about
> rspec.
>
> It involves two files:
> bowling.rb and bowling_spec.rb
>
> # bowling_spec.rb
> require'rubygems'
> require 'spec'
> require 'bowling'
>
> describe Bo
Hi,
I am very new to Ruby and Rspec, and found a simple tutorial online about
rspec.
It involves two files:
bowling.rb and bowling_spec.rb
# bowling_spec.rb
require'rubygems'
require 'spec'
require 'bowling'
describe Bowling do
it "should score 0 for gutter game" do
bowling = Bowling.new
$ sudo gem install rspec-rails --development
Password:
ERROR: Error installing rspec-rails:
rspec requires cucumber (>= 0.3, development)
...and when installed cucumber manually, it ends up with weird stuff.
Is this RSpec issue or a RubyGems issue?
___