summaryrefslogtreecommitdiff
path: root/spec/models/programming_language_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/programming_language_spec.rb')
-rw-r--r--spec/models/programming_language_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/models/programming_language_spec.rb b/spec/models/programming_language_spec.rb
new file mode 100644
index 00000000000..99cd358f863
--- /dev/null
+++ b/spec/models/programming_language_spec.rb
@@ -0,0 +1,11 @@
+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