fuel-plugin-sensu/deployment_scripts/puppet/files/embedded/lib/ruby/gems/2.3.0/gems/dentaku-2.0.9/spec/token_spec.rb

11 lines
264 B
Ruby

require 'dentaku/token'
describe Dentaku::Token do
it 'has a category and a value' do
token = Dentaku::Token.new(:numeric, 5)
expect(token.category).to eq(:numeric)
expect(token.value).to eq(5)
expect(token.is?(:numeric)).to be_truthy
end
end