We're going to go in and start modifying test/vocial/votes/votes_test.exs. We'll create a new "messages" describe block in our test, and we're going to mess around with chaining setup blocks in tests to do a better job of doing test creation. Remember that the process for setup functions is to return information in the form of a tuple where the first element in the tuple is the atom :ok and the second part is a keyword list of any of the other information you want to pass down to other tests. We can test this out very quickly by writing our new describe block and then putting a new test in it:
describe "messages" do test "message is hello", %{message: message} do assert message == "Hello" end test "user is not blank", ...