Sha256: b13cb6e98b655976916fa534373a0de31bc7e683439f991b075abe289402d7ed
Contents?: true
Size: 390 Bytes
Versions: 19
Compression:
Stored size: 390 Bytes
Contents
require 'spec_helper' module Finitio describe Constraint, "name" do subject{ constraint.name } context 'with an unnamed constraint' do let(:constraint){ Constraint.new(byte_full) } it{ should eq(:default) } end context 'with a named constraint' do let(:constraint){ Constraint.new(byte_full, :byte) } it{ should eq(:byte) } end end end
Version data entries
19 entries across 19 versions & 1 rubygems