次のようなテストがあります:
it "should not indicate backwards jumps if the checker position is not a king" do
board = Board.new
game_board = board.create_test_board
board.add_checker(game_board, :red, 3, 3)
x_coord = 3
y_coord = 3
jump_locations = {}
jump_locations["upper_left"] = true
jump_locations["upper_right"] = false
jump_locations["lower_left"] = false
jump_locations["lower_right"] = true
adjusted_jump_locations = @bs.adjust_jump_locations_if_not_king(game_board, x_coord, y_coord, jump_locations)
adjusted_jump_locations["upper_left"].should == true
adjusted_jump_locations["upper_right"].should == false
adjusted_jump_locations["lower_left"].should == false
adjusted_jump_locations["lower_right"].should == false
end
これは冗長です。私の期待を述べるより簡潔な方法はありますか。私はドキュメントを見てきましたが、期待を圧縮する場所がわかりません。ありがとう。
http://rubydoc.info/gems/rspec-expectations/RSpec/Matchers:include
ハッシュでも機能します:
jump_locations.should include(
"upper_left" => true,
"upper_right" => false,
"lower_left" => false,
"lower_right" => true
)
@Davidの回答に追加したいだけです。 include
ハッシュでマッチャーをネストして使用できます。例えば:
# Pass
expect({
"num" => 5,
"a" => {
"b" => [3, 4, 5]
}
}).to include({
"num" => a_value_between(3, 10),
"a" => {
"b" => be_an(Array)
}
})
警告:ネストされたinclude
ハッシュはすべてのキーをテストする必要があります。そうしないと、テストが失敗します。例:
# Fail
expect({
"a" => {
"b" => 1,
"c" => 2
}
}).to include({
"a" => {
"b" => 1
}
})
RSpec 3の構文は変更されましたが、インクルードマッチャーは引き続き1つです。
expect(jump_locations).to include(
"upper_left" => true,
"upper_right" => false,
"lower_left" => false,
"lower_right" => true
)
built-in-matchers#include-matcher を参照してください。
コンテンツ全体がハッシュであるかどうかをテストする別の簡単な方法は、コンテンツがハッシュオブジェクト自体であるかどうかをチェックアウトすることです。
it 'is to be a Hash Object' do
workbook = {name: 'A', address: 'La'}
expect(workbook.is_a?(Hash)).to be_truthy
end