2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2017-04-27 09:13:54 -04:00
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Cohorts page' do
|
2017-04-27 09:13:54 -04:00
|
|
|
before do
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(create(:admin))
|
2018-09-08 03:23:01 -04:00
|
|
|
|
|
|
|
stub_application_setting(usage_ping_enabled: true)
|
2017-04-27 09:13:54 -04:00
|
|
|
end
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
it 'See users count per month' do
|
2020-01-09 13:07:52 -05:00
|
|
|
create_list(:user, 2)
|
2017-04-27 09:13:54 -04:00
|
|
|
|
2018-07-17 20:37:58 -04:00
|
|
|
visit instance_statistics_cohorts_path
|
2017-04-27 09:13:54 -04:00
|
|
|
|
|
|
|
expect(page).to have_content("#{Time.now.strftime('%b %Y')} 3 0")
|
|
|
|
end
|
|
|
|
end
|