You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
464 B
18 lines
464 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
describe Admin::Metrics::Dimension::LanguagesDimension do |
|
subject(:dimension) { described_class.new(start_at, end_at, limit, params) } |
|
|
|
let(:start_at) { 2.days.ago } |
|
let(:end_at) { Time.now.utc } |
|
let(:limit) { 10 } |
|
let(:params) { ActionController::Parameters.new } |
|
|
|
describe '#data' do |
|
it 'runs data query without error' do |
|
expect { dimension.data }.to_not raise_error |
|
end |
|
end |
|
end
|
|
|