a2cfc150ce
Adds `# frozen_string_literal: true` to spec/models ruby files
13 lines
257 B
Ruby
13 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe ProjectSnippet do
|
|
describe "Associations" do
|
|
it { is_expected.to belong_to(:project) }
|
|
end
|
|
|
|
describe "Validation" do
|
|
it { is_expected.to validate_presence_of(:project) }
|
|
end
|
|
end
|