Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #library('pub_tests'); | |
| 6 | |
| 7 //#import('../../../pub/pub.dart'); | |
|
Emily Fortuna
2012/03/28 23:10:11
why is this line here but commented out?
Bob Nystrom
2012/03/29 00:10:17
Pub doesn't exist yet! This is a work-in-progress.
| |
| 8 | |
| 9 // TODO(rnystrom): Better path to unittest. | |
| 10 #import('../../../client/testing/unittest/unittest_vm.dart'); | |
| 11 | |
| 12 main() { | |
| 13 test('should pass', () { | |
| 14 expect(1).equals(1); | |
| 15 }); | |
| 16 } | |
| OLD | NEW |