2017-04-27 09:13:54 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-07-17 20:37:58 -04:00
|
|
|
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
|
2017-04-27 09:13:54 -04:00
|
|
|
2.times { create(:user) }
|
|
|
|
|
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
|