Sha256: eeecc25f3678e0d7ef23e653fe7d45819f31b878d443313649a471e5c28fbae1

Contents?: true

Size: 667 Bytes

Versions: 5

Compression:

Stored size: 667 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Create new project without default configuration' do
  before do
    remove_project_directory
    run_cybele(cybele_not_default_parameters)
    setup_app_dependencies
  end

  let(:git_branch) { cybele_help_run(command: 'git branch') }

  it 'git branch test' do
    expect(git_branch).to include <<~EOH
      * develop
        master
    EOH
  end

  it 'git flow test' do
    cybele_help_run(command: 'git flow feature start test')
    git_flow = cybele_help_run(command: 'git branch')
    expect(git_flow).to include <<~EOH
        develop
      * feature/test
        master
    EOH
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cybele-2.3.2 spec/features/git_and_git_flow_spec.rb
cybele-2.3.1 spec/features/git_and_git_flow_spec.rb
cybele-2.2.0 spec/features/git_and_git_flow_spec.rb
cybele-2.1.0 spec/features/git_and_git_flow_spec.rb
cybele-2.0.0 spec/features/git_and_git_flow_spec.rb