aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/referential_spec.rb
blob: 25dd97bddc8521fef85c9d110f24a906dbca5b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'spec_helper'

describe Referential, :type => :model do

  it "create a rule_parameter_set" do
    referential = create(:referential)
    #expect(referential.rule_parameter_sets.size).to eq(1)
  end

  it { should have_many(:referential_metadatas) }
  it { should belong_to(:workbench) }
end