1RSpec.describe Mpeg::Str do 2 context 'he' do 3 let(:subject) { described_class.new('he') } 4 5 specify { expect(subject.parse("hello")).to be(false) } 6 specify { expect(subject.parse("he")).to be(true) } 7 end 8end