RubyMineでやってみた:『スはスペックのス 【第 1 回】 RSpec の概要と、RSpec on Rails (モデル編)』
Component | version |
---|---|
RubyMine | 5.0(Windows) |
Rails | 3.2.12 |
Rspec | 2.13.0 |
Setup
最初にプロジェクトを作るときに「Skip Test:Unit files」をチェックする。
コードを書く
...
gem "rspec-rails", :group => [:development, :test]
...
bundle install
Tools > Run Rails Script > "rails", "generate rspec:install"
Tools > Run Rails Generator > model > Blog name:string
mkdir spec/fixtures
コードを書く
one:
id: 1
name: 今日の出来事その1
two:
id: 2
name: 今日の出来事その2
書式はこんな感じ:
データ名1:
id: 1
要素名: 内容
データ名2:
id: 2
要素名: 内容
.
.
.
データ名はテスト時にどのデータを取得するかのシンボルになる。
フィクスチャをテスト時に読み込むときは describe ブロックの中で呼び出せばいい
describe モデルクラス do
fixtures :フィクスチャファイルの名前のシンボル
end
すべてのフィクスチャを読み込みたい場合は
fixtures :all
Tools > Run Rake Task > db:migrate
Run > Run > spec
Toggle auto-test
1st red
- テストを追加する
# encoding: utf-8
require 'spec_helper'
describe Blog do
subject{@blog = Blog.new}
context "#title が設定されていない場合:" do
it{should_not be_valid}
end
end
保存すると自動でテストが走り、こける
バリデーションを追記
...
validates :name, presence: true
...
保存すると自動でテストが走り、合格する
テストを追加する
...
it{should have(1).errors_on(:name)}
...
- 保存すると自動でテストが走り、合格する
2nd red
- テストを追加する
describe Blog do
fixtures :blogs, :entries
context "fixtureを使った場合:" do
subject{@blog = blogs(:one)}
it{should have_at_least(2).entries}
end
end
保存すると自動でテストが走り、こける
Tools > Run Rails Generator > model > entry title:string body:text posted_on:date created_at:timestamp updated_at:timestamp blog_id:integer
Tools > Run Rake Task > db:migrate
コードを書く
earliest:
id: 1
blog_id: 1
title: "吾輩は猫である"
body: "名前はまだない"
posted_on: 2012-05-01
latest:
id: 2
blog_id: 1
title: "hoge"
body: "hogehoge"
posted_on: 2012-05-10
_upgrading:
id: 3
blog_id: 2
title: "fuga"
body: "fugafuga"
posted_on: 2012-06-01
- コードを書く
...
has_many :entries
...
- Run > Run > specすると、テストを通過する
3rd red
- テストを追加する
# encoding: utf-8
require 'spec_helper'
describe Entry do
fixtures :entries, :blogs
context "fixtureを使った場合:" do
subject{@blog = entries(:earliest).blog}
it{should == blogs(:one)}
end
end
自動的にテストが走り、コケる
コードを書く
...
belongs_to :blog
...
- 保存すると自動でテストが走り、合格する
4th red
- テストを追加する
describe Blog do
fixtures :blogs, :entries
context "に記事を投稿できた場合:" do
before{@blog = blogs(:one)}
it "記事の件数が1件増えること" do
lambda {
@blog.entries.create(
:title => 'new_post', :body => 'hello',
:posted_on => Date.today)
}.should change(Entry, :count).by(1)
end
end
end
- 保存すると自動でテストが走り、こける
5th red
- テストを追加する
describe Entry do
fixtures :blogs
context "#posted_on が入力されずに保存された場合:" do
subject do
@entry = Entry.new(title: "タイトル", body: "本文")
@entry.save!
@entry.reload
@entry
end
its('posted_on') { should == Date.today }
end
end
保存すると自動でテストが走り、こける
コードを書く
class Entry < ActiveRecord::Base
attr_accessible :blog_id, :body, :created_at, :posted_on, :title, :updated_at, :blog
belongs_to :blog
before_save :posted_on_today
def posted_on_today
self.posted_on = Date.today
end
end
- 保存すると自動でテストが走り、合格する
6th red
- テストを追加する
describe Entry do
fixtures :blogs
context "#posted_on を明示して保存された場合:" do
subject do
@posted_on = Date.today - 10
@entry = Entry.new(title: "タイトル",
body: "本文",
posted_on: @posted_on
)
@entry.save!
@entry.reload
@entry
end
its('posted_on') { should == @posted_on }
end
end
保存すると自動でテストが走り、こける
コードを書く
# self.posted_on = Date.today
self.posted_on ||= Date.today
- 保存すると自動でテストが走り、合格する
モデル編おしまい。
ブログやってます:PAPA-tronix !
Author And Source
この問題について(RubyMineでやってみた:『スはスペックのス 【第 1 回】 RSpec の概要と、RSpec on Rails (モデル編)』), 我々は、より多くの情報をここで見つけました https://qiita.com/Feel-Physics/items/04595387f7581906dab8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .