Balaji Vajjala's Blog

A DevOps Blog from Trenches

01.05

  • 1.5 Change an existing automated test
    • Learning Objectives
    • Change an existing automated test
    • EXERCISE: Make changes to an automated test and commit to GitHub
    • EXERCISE: Make changes to an automated test and commit to GitHub (OPTIONAL)

1.5 Change an existing automated test

Learning Objectives

By the end of this lesson you will be able to:

  • Change an existing automated test and commit it to GitHub.

Change an existing automated test

Slide1

EXERCISE: Make changes to an automated test and commit to GitHub

  1. From your AWSCLI instance, go to the unit tests directory.
  2. Open the test file as shown below.

    “` $ sudo vim BeerServiceUnitTest.java

    “`

  3. Make a modification to the contents of the file and save it.

  4. Add the file in Git

    “` $ git add BeerServiceUnitTest.java

    “`

  5. Commit the file to Git

    “` $ git commit -m “Modified test script”

    “`

  6. Push it to the Git master.

    “` $ git push

    “`

EXERCISE: Make changes to an automated test and commit to GitHub (OPTIONAL)

  1. From your AWSCLI instance, go to sample_app.
  2. Open the test file as shown below.

    “` $ sudo vim users_controller_spec.rb

    “`

  3. Make a modification to the contents of the file and save it.

  4. Add the file in Git

    “` $ git add .

    “`

  5. Commit the file to Git

    “` $ git commit -m “Modified test script”

    “`

  6. Push it to the Git master.

    “` $ git push

    “`