control 'pipenv' do
  describe command('/usr/bin/pip3 list | grep -i pipenv') do
    its('stdout') { should match /pipenv/ }
    its('exit_status') { should eq 0 }
  end
end
