2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ProgrammingLanguage do
|
|
|
|
it { is_expected.to respond_to(:name) }
|
|
|
|
it { is_expected.to respond_to(:color) }
|
|
|
|
|
|
|
|
it { is_expected.to validate_presence_of(:name) }
|
|
|
|
it { is_expected.to allow_value("#000000").for(:color) }
|
|
|
|
it { is_expected.not_to allow_value("000000").for(:color) }
|
|
|
|
it { is_expected.not_to allow_value("#0z0000").for(:color) }
|
|
|
|
end
|