module Shokkenki::Provider::RSpec::Term::StringTerm
Public Instance Methods
verify_within(context)
click to toggle source
# File lib/shokkenki/provider/rspec/term/string_term.rb, line 6 def verify_within context term_value = value context.it %Q{is "#{term_value}"} do @actual_values.each { |value| expect(value.to_s).to(eq(term_value)) } end end