前回の続きでRSpecのチュートリアルをやってきます。 前回はただ単に、古いrspecの書き方から新しいrspecの書き方に変えただけで、後はなぞっただけでした。何実装してんのかは気にしなかったので、今回はそれぞれの意味を見て行きます。 今実装されているspecはこちら describe "An all white code with an all white guess" do before do all_white_code = Mastermind::Code.new(:white, :white, :white, :white) all_white_guess = Mastermind::Code.new(:white, :white, :white, :white) @score = all_white_code.mark(all_white_guess) end it "sho