9 lines
177 B
Ruby
9 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe IssueTrackerData do
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to :integration }
|
|
end
|
|
end
|