Displaying 2 results from an estimated 2 matches for "property_spec".
2008 Aug 24
0
Running specs within a spec server
...ther of these commands:
$ rake spec:server:start
$ script/spec_server
and confirm that it''s running and listening:
$ lsof -nPi | grep ruby
ruby 20809 nick 4u IPv6 0x3c2e4bc 0t0 TCP [::1]:8989 (LISTEN)
However, when I run any of these commands:
$ rake spec:models
$ spec -X spec/models/property_spec.rb
$ script/spec -X spec/models/property_spec.rb
This error occurs:
/opt/local/lib/ruby/1.8/drb/drb.rb:855:in `initialize'': getaddrinfo:
nodename nor servname provided, or not known (SocketError)
The full trace is at http://pastie.org/259026
I went into /opt/local/lib/ruby/1.8/drb/drb.r...
2008 Mar 08
10
rspec groups?
One of the things I really liked about TestNG was the grouping
feature. Are there any plans for rSpec to incorporate that? Is there
any way to emulate that functionality in rspec?
Will.