summaryrefslogtreecommitdiff
path: root/spec/features/admin/admin_cohorts_spec.rb
blob: 6840456e509b303e58a8d9f7319212d9fe89704a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rails_helper'

feature 'Admin cohorts page', feature: true do
  before do
    sign_in(create(:admin))
  end

  scenario 'See users count per month' do
    2.times { create(:user) }

    visit admin_cohorts_path

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