summaryrefslogtreecommitdiff
path: root/spec/features/admin/admin_cohorts_spec.rb
blob: dd14ffdb2ceb3b304091dc145de81b31e8682ef6 (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
    login_as :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