cohorts_spec.rb 289 Bytes
Newer Older
1 2
require 'rails_helper'

3
describe 'Cohorts page' do
4
  before do
5
    sign_in(create(:admin))
6 7
  end

8
  it 'See users count per month' do
9 10
    2.times { create(:user) }

11
    visit instance_statistics_cohorts_path
12 13 14 15

    expect(page).to have_content("#{Time.now.strftime('%b %Y')} 3 0")
  end
end