Last active
          August 29, 2015 13:57 
        
      - 
      
 - 
        
Save mplacona/9407753 to your computer and use it in GitHub Desktop.  
  
    
      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
    
  
  
    
  | import 'package:unittest/unittest.dart'; | |
| void main() { | |
| Map cache = { | |
| 'Homepage': '<h1>Swanky Homepage</h1>', | |
| 'Contact': '<h1>Talk to me baby</h1>', | |
| 'About': '<h1>I\'m a legend</h1>' | |
| }; | |
| test('cached homepage', () { | |
| expect(cache.containsKey('Homepage'), isTrue); | |
| }); | |
| test('homepage is well formatted', (){ | |
| String homepageValue = cache['Homepage']; | |
| expect(homepageValue, equals('<h1>Swanky Homepage</h1>')); | |
| }); | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment