thingspeak/spec/models/window_spec.rb
2014-02-17 12:05:39 -05:00

30 lines
602 B
Ruby

# == Schema Information
#
# Table name: windows
#
# id :integer not null, primary key
# channel_id :integer
# position :integer
# created_at :datetime
# updated_at :datetime
# html :text
# col :integer
# title :string(255)
# wtype :string(255)
# name :string(255)
# type :string(255)
# private_flag :boolean default(FALSE)
# show_flag :boolean default(TRUE)
#
require 'spec_helper'
describe Window do
it "should be valid" do
window = Window.new
window.should be_valid
end
end