LoginSignup
3
3

More than 5 years have passed since last update.

Rspecで"実装していないから落ちるテスト"を記述するときは,it "should ..." にブロックを渡さないでおく.シンプル.

Last updated at Posted at 2012-03-16
describe User do
  it "should get following tag's items"
end

### execution and its outputs
# $ bundle exec spec spec/models/user_spec.rb
# ..*
#
# Pending:
#   User should do xxx
#     # Not Yet Implemented
#     # ./spec/models/user_spec.rb:27
#
# Finished in 0.78909 seconds
# 3 examples, 0 failures, 1 pending

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3