Skip to content

Commit e507b0e

Browse files
committed
prefactor: rename user_journey_test to user_install_test
1 parent 629da53 commit e507b0e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Run tests
3333
run: bin/test
3434

35-
user-journey:
35+
user-install:
3636
strategy:
3737
fail-fast: false
3838
matrix:
@@ -44,5 +44,5 @@ jobs:
4444
with:
4545
ruby-version: "3.4"
4646
bundler: latest
47-
- run: test/integration/user_journey_test.sh
47+
- run: test/integration/user_install_test.sh
4848
shell: bash

.github/workflows/upstream.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
- name: Run tests
3535
run: bin/test
3636

37-
user-journey:
38-
name: "user-journey (rails ${{ matrix.ref }})"
37+
user-install:
38+
name: "user-install (rails ${{ matrix.ref }})"
3939
runs-on: ${{matrix.plat}}-latest
4040
strategy:
4141
fail-fast: false
@@ -50,5 +50,5 @@ jobs:
5050
with:
5151
ruby-version: "3.3"
5252
bundler: latest
53-
- run: test/integration/user_journey_test.sh
53+
- run: test/integration/user_install_test.sh
5454
shell: bash

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This doc is a brief introduction on modifying and maintaining this gem.
99

1010
The unit tests are run with `bundle exec rake test`
1111

12-
There is an additional integration test which runs in CI, `test/integration/user_journey_test.sh` which you may also want to run.
12+
There is an additional integration test which runs in CI, `test/integration/user_install_test.sh` which you may also want to run.
1313

1414

1515
### Testing in a Rails app

test/integration/user_journey_test.sh renamed to test/integration/user_install_test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ pushd "My Workspace"
1818

1919
# create a rails app
2020
bundle exec rails -v
21-
bundle exec rails new test-app --skip-bundle
22-
pushd test-app
21+
bundle exec rails new test-install --skip-bundle
22+
pushd test-install
2323

2424
# make sure to use the same version of rails (e.g., install from git source if necessary)
2525
bundle remove rails --skip-install

0 commit comments

Comments
 (0)