Sha256: c566b4cfb4a770f73565da9f2c447a0d0eb9eb9c1135c891c29587679d0b6f15
Contents?: true
Size: 825 Bytes
Versions: 10
Compression:
Stored size: 825 Bytes
Contents
# frozen_string_literal: true # Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ # == Schema Information # # Table name: field_groups # # id :integer not null, primary key # name :string(64) # label :string(128) # position :integer # hint :string(255) # created_at :datetime # updated_at :datetime # tag_id :integer # klass_name :string(32) # require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper') describe FieldGroup do it "should have field metadata" do expect(FieldGroup.new).to respond_to(:fields) end end
Version data entries
10 entries across 10 versions & 1 rubygems