master
 1describe "stronglifters::user" do
 2  subject do
 3    ChefSpec::SoloRunner.new do |node|
 4      node.set["stronglifters"]["username"] = username
 5    end.converge(described_recipe)
 6  end
 7
 8  let(:username) { FFaker::Internet.user_name }
 9
10  it "creates the rails user" do
11    expect(subject).to create_user(username)
12  end
13end