Newer
Older
2018-fumichan-thesis / practice / vendor / bundle / ruby / 2.5.0 / gems / mustermann-1.0.3 / spec / simple_match_spec.rb
# frozen_string_literal: true
require 'support'
require 'mustermann/simple_match'

describe Mustermann::SimpleMatch do
  subject { Mustermann::SimpleMatch.new('example') }
  its(:to_s) { should be == 'example' }
  its(:names) { should be == [] }
  its(:captures) { should be == [] }
  example { subject[1].should be == nil }
end