翻訳と辞書
Words near each other
・ RTC X Roads
・ RTCA
・ RTCC
・ RTCE (disambiguation)
・ RTCG
・ RTCM
・ RTCN Białystok (Krynice)
・ RTCN Suwałki (Krzemianucha)
・ RSPB Frampton Marsh
・ RSPB Minsmere
・ RSPCA Animal Rescue
・ RSPCA Australia
・ RSPCA NSW
・ RSPCA Reform Group
・ RSPCA Tasmania
RSpec
・ RSPH1
・ RSPH10B
・ RSPH3
・ RSPH4A
・ RSPH6A
・ RSPH9
・ RSPlug
・ RSPO
・ RSPO1
・ RSPO2
・ RSPO3
・ RSPO4
・ RSPORTS
・ RSQ (magazine)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

RSpec : ウィキペディア英語版
RSpec

RSpec is a behavior-driven development (BDD) framework for the Ruby programming language, inspired by JBehave.〔Ed Gibbs, (JBehave and RSpec History ) (Blog entry)〕 It contains its own mocking framework that is fully integrated into the framework based upon JMock. The framework can be considered a domain-specific language (DSL) and resembles a natural language specification.
==Usage Examples==

#Testing for our User class
describe User do
context 'with admin privileges' do
before :each do
@admin = Admin.get(1)
end
it 'should exist' do
expect(@admin).not_to be_nil
end

it 'should have a name' do
expect(@admin.name).not_to be_false
end
end
#...
end


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「RSpec」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.