diff --git a/src/popover/docs/readme.md b/src/popover/docs/readme.md
index 8b43c66c62..e94651ccb3 100644
--- a/src/popover/docs/readme.md
+++ b/src/popover/docs/readme.md
@@ -13,6 +13,8 @@ will display:
- `popover-animation`: Should it fade in and out? Defaults to "true".
- `popover-popup-delay`: For how long should the user have to have the mouse
over the element before the popover shows (in milliseconds)? Defaults to 0.
+- `popover-trigger`: What should trigger the show of the popover? See the
+ `tooltip` directive for supported values.
The popover directives require the `$position` service.
diff --git a/src/popover/test/popoverSpec.js b/src/popover/test/popoverSpec.js
index 81e37d4734..b7c5b34ad7 100644
--- a/src/popover/test/popoverSpec.js
+++ b/src/popover/test/popoverSpec.js
@@ -44,92 +44,6 @@ describe('popover', function() {
elm.trigger( 'click' );
expect( elmScope.tt_isOpen ).toBe( false );
}));
-
- it('should have default placement of "top"', inject(function() {
- elm.trigger( 'click' );
- expect( elmScope.tt_placement ).toBe( "top" );
- }));
-
- it('should allow specification of placement', inject( function( $compile ) {
- elm = $compile( angular.element(
- 'Selector Text'
- ) )( scope );
- elmScope = elm.scope();
-
- elm.trigger( 'click' );
- expect( elmScope.tt_placement ).toBe( "bottom" );
- }));
-
- it('should work inside an ngRepeat', inject( function( $compile ) {
-
- elm = $compile( angular.element(
- '