This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="group-legend"><%=ViewData["Title"]%></div> | |
| <p> | |
| <label for="StreetAddress">Address:</label> | |
| <textarea name="HomeAddress.StreetAddress" id="HomeAddress.StreetAddress" cols="20" rows="3" <%=!isEditable ? "readonly='readonly'":"" %>> | |
| <%= Model.StreetAddress %> | |
| </textarea> | |
| <%= Html.ValidationMessage("StreetAddress", "*") %> | |
| </p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define([], function() { | |
| "use strict"; | |
| return function(player, ui_builder) { | |
| var label = ui_builder.build_label("player_role"); | |
| var refresh = function() { | |
| if (player.is_batting()) { | |
| label.update_text("You are batting."); | |
| } else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Given a completed auction | |
| Then the admin can’t suspend the auction. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| When auctioneer ends Live Sale after all listings have run | |
| Then admin verifies that they "cannot" suspend the Live Sale |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Given a No Sale | |
| Then the auction can be suspended. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| When buyer_2 bids | |
| And auctioneer does a "Sell" on the listing | |
| And auctioneer does a "No Sale" on the listing | |
| Then admin verifies that they "can" suspend the Live Sale |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Given an auction that has not started | |
| When the auctioneer sets the starting bid | |
| Then the auction has started. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Auctioneer starts the Live Sale | |
| And auctioneer sets a starting bid of 4000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| When admin resumes the Live Sale | |
| Then Following users should not see the splash popup | |
| | role | | |
| | auctioneer | | |
| | seller | | |
| | buyer_1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Given an auction with 2 registered users. | |
| When an auction is suspended | |
| Then all registered users are notified of the suspension | |
| Then the auctioneer is notified of the suspension | |
| Then the seller is notified of the suspension |